home *** CD-ROM | disk | FTP | other *** search
/ BMUG PD-ROM 1995 Fall / PD-ROM F95.toast / Programming / Programming Utilities / ViewIt 2.04 ƒ / ViewIt™ 2.04 Shareware / Projects / C Demos / MinimumLC.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-04  |  318 b   |  15 lines  |  [TEXT/ttxt]

  1. /* Minimum LC Demonstration Program */
  2. /* ©FaceWare 1991-92.  All Rights Reserved. */
  3.  
  4. #include "FaceStorLC.h"
  5. extern struct FaceRec fRec;
  6.  
  7. main()
  8. {
  9.     strcpy(fRec.uName, "Minimum.Rsrc");
  10.     FaceIt(0L,DoInit,0L,0L,0L,0L);
  11.     FaceIt(0L,HlpWnd,0L,0L,10L,10L);  /* optional */
  12.     for (;;) {
  13.         FaceIt(0L,DoLoop,0L,0L,0L,0L);
  14.         }
  15. }